home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 March / PCWorld_2002-03_cd.bin / Software / TemaCD / xteq / setup.exe / {app} / plugins / XQ WinNT AppInit.xpl < prev    next >
Text File  |  2001-04-13  |  1KB  |  38 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="1"
  3. "COUNT"="1"
  4. "UIPATH"="System\Security\Windows NT/2K/XP"
  5. "NAME"="App Init DLLs"
  6. "VERSION"="1.17"
  7. "OSVERSION"="010101"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Init DLLs"
  10. "DESCRIPTION 1"="This settings causes Windows to load the specified DLLs every time a program is started."
  11. "DESCRIPTION 2"="If you have trouble running some applications and this field is not empty, it is possible that the DLLs are responsible for this behavior."
  12. "DESCRIPTION 3"="In this case, clear this field and restart your computer."
  13. "DESCRIPTION 4"="For some NVidia based video cards, the default entry will show "NVDESK32.DLL" (no quotes) - do not remove this item if using NVidia based card that shows this."
  14. "AUTHOR"="Xteq Systems"
  15. "CONTACTURL"="http://www.xteq.com"
  16. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  17. "COMMENT 1"=" "
  18.  
  19.  
  20.  
  21. sPath="HKLM\Software\Microsoft\Windows NT\CurrentVersion\Windows\AppInit_DLLs"
  22. Sub Plugin_Initialize 
  23.   s=RegReadValue(sPath)
  24.   Call SetUIElement(1,s)
  25. End Sub
  26.  
  27. Sub Plugin_CheckData(ElementIndex)
  28. End Sub
  29.  
  30. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  31.  s=GetUIElement(1)
  32.  Call RegWriteValue(sPath,s,1)
  33.  Call Restart
  34. End Sub
  35.  
  36. Sub Plugin_Terminate 
  37. End Sub
  38.